home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / graphics / dimlib10 / unit2.pas < prev   
Pascal/Delphi Source File  |  1995-10-31  |  861b  |  46 lines

  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, DimLib;
  8.  
  9. type
  10.   TForm2 = class(TForm)
  11.     Button1: TButton;
  12.     Button2: TButton;
  13.     Label1: TLabel;
  14.     procedure Button1Click(Sender: TObject);
  15.     procedure Button2Click(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Form2: TForm2;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TForm2.Button1Click(Sender: TObject);
  30. begin
  31.   DimWindow(Handle);
  32.   MessageDlg('Thanks!', mtInformation, [mbOk], 0);
  33.   UnDimWindow(Handle);
  34.   ModalResult := mrYes;
  35. end;
  36.  
  37. procedure TForm2.Button2Click(Sender: TObject);
  38. begin
  39.   DimWindow(Handle);
  40.   MessageDlg('Bummer!', mtInformation, [mbOk], 0);
  41.   UnDimWindow(Handle);
  42.   ModalResult := mrNo;
  43. end;
  44.  
  45. end.
  46.